iT邦幫忙

2023 iThome 鐵人賽

DAY 17
0
自我挑戰組

30 天學習資料庫系列 第 17

SQL 多表查詢

  • 分享至 

  • xImage
  •  

-- 若想要實現多表查詢 需要有連接條件
select employee.emp_id, name , total_sales
from employee , works_with
where employee.emp_id = works_with.emp_id ;
-- emp_id同時存在兩個表中,所以查詢語句中要表明是的是哪一個
-- 從SQL優化的角度來說,建議多表查詢時每個屬性前都要註明其所在的表

-- 可以給表格取別名 註明在from裡面 一旦用過別名就只能使用別名
select t1.emp_id, t1.name , t2.total_sales
from employee t1, works_with t2
where t1.emp_id= t2.emp_id ;


上一篇
SQL 比較運算符
下一篇
SQL function
系列文
30 天學習資料庫30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言